diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-04-19 22:54:17 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-04-19 22:54:42 +0200 |
commit | 959a7f65dea1b3251e52ada13dc33ddc5b32a61b (patch) | |
tree | 866ce4aac06fc2f9b16a2834c25144a607095d9b | |
parent | 8b194e07cff577a54b6adfbf2f571a500de452e0 (diff) | |
download | Chimère - projet de référence-959a7f65dea1b3251e52ada13dc33ddc5b32a61b.tar.bz2 Chimère - projet de référence-959a7f65dea1b3251e52ada13dc33ddc5b32a61b.zip |
Adaptation for directory management
-rw-r--r-- | chimere_example_static/chimere/css/extra-styles.css | 10 | ||||
-rw-r--r-- | settings.py | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/chimere_example_static/chimere/css/extra-styles.css b/chimere_example_static/chimere/css/extra-styles.css index 16af217..a2da8a4 100644 --- a/chimere_example_static/chimere/css/extra-styles.css +++ b/chimere_example_static/chimere/css/extra-styles.css @@ -219,6 +219,12 @@ li.main_category > span.category_name:hover{ width:30px; } +@media (min-height: 500px) { + #category-directory{ + width:50%; + } +} + #search-nav{ position:absolute; bottom:0; @@ -341,6 +347,10 @@ span#permalink, .navbar-nav .lbl, #areas-div label, #permalink, #simple_button, content:"\f040"; } +.fa-chimere-categories:before{ + content:"\f03a"; +} + .fa-chimere-rss:before{ content:"\f09e"; } diff --git a/settings.py b/settings.py index 072a322..03e56c4 100644 --- a/settings.py +++ b/settings.py @@ -56,6 +56,8 @@ CHIMERE_DISPLAY_AREAS = True CHIMERE_DAYS_BEFORE_EVENT = 30 # allow feeds CHIMERE_FEEDS = True +# display a directory of items +CHIMERE_DIRECTORY = True CHIMERE_ICON_WIDTH = 21 CHIMERE_ICON_HEIGHT = 25 |